home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / pascal / paslib.zip / TEMPLATE.PAS < prev   
Pascal/Delphi Source File  |  1986-05-22  |  617b  |  30 lines

  1. (*          TEMPLATE.PAS
  2. **             -- standard template for programs using PASLIB01.INC
  3. *)
  4. program YxZZy;
  5. {$R+,V-}
  6. {.F-}
  7. {$I PasLib01.inc}
  8. {.F+}
  9. {---------------GLOBALS---------------------------}
  10. Const
  11.    version = 'Template [0.1]';
  12.  
  13. (*
  14. Type
  15. Var
  16. *)
  17. {---------------SUBPROGRAMS-----------------------}
  18.  
  19. {---------------MAIN------------------------------}
  20. begin
  21.    InitSys;   Heading(version + TimeStamp);
  22.    writeln('Hello, world.');
  23.    ShowHelp('That''s all, folks!');
  24. end.
  25. {---------------END-OF-FILE-----------------------}
  26. {-------------------------------------------------}
  27.  
  28.  
  29.  
  30.